home *** CD-ROM | disk | FTP | other *** search
/ Sunday Savers: Sharing Fun! I Know My Savior Lives / Sunday Savers: Sharing Fun! I Know My Savior Lives.iso / pc / main.dxr / 00008_help.ls < prev    next >
Encoding:
Text File  |  2009-10-06  |  490 b   |  26 lines

  1. on mouseDown
  2.   global speed
  3.   if speed = "slow" then
  4.     sprite(59).locV = 265
  5.   else
  6.     repeat while sprite(59).locV < 265
  7.       sprite(59).locV = sprite(59).locV + 25
  8.       updateStage()
  9.     end repeat
  10.   end if
  11.   sprite(60).visible = 1
  12. end
  13.  
  14. on mouseLeave
  15.   global speed
  16.   sprite(60).visible = 0
  17.   if speed = "slow" then
  18.     sprite(59).locV = -135
  19.   else
  20.     repeat while sprite(59).locV > -135
  21.       sprite(59).locV = sprite(59).locV - 25
  22.       updateStage()
  23.     end repeat
  24.   end if
  25. end
  26.